home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Ss-Sz / SysMsg.cpt / SysMsg / SysMsg V0.9a / stack.txt < prev   
Text File  |  1987-09-23  |  5KB  |  229 lines

  1. -- stack: in.9a
  2. -- format: 8 (HyperCard 1)
  3. -- flags: 0x0 (none)
  4. -- protect password hash: 0
  5. -- maximum user level: 5 (scripting)
  6. -- window: Rect(x1=0, y1=0, x2=0, y2=0)
  7. -- screen: Rect(x1=0, y1=0, x2=0, y2=0)
  8. -- card dimensions: w=0 h=0
  9. -- scroll: x=0 y=0
  10. -- background count: 1
  11. -- first background id: 2721
  12. -- card count: 3
  13. -- first card id: 2820
  14. -- list block id: 4696
  15. -- print block id: 3415
  16. -- font table block id: 0
  17. -- style table block id: 0
  18. -- free block count: 0
  19. -- free size: 0 bytes
  20. -- total size: 16000 bytes
  21. -- stack block size: 4608 bytes
  22. -- created by hypercard version: 0x00000000
  23. -- compacted by hypercard version: 0x00000000
  24. -- modified by hypercard version: 0x00000000
  25. -- opened by hypercard version: 0x00000000
  26. -- patterns[0]: 0x0000000000000000
  27. -- patterns[1]: 0x0000220000002200
  28. -- patterns[2]: 0x8800220088002200
  29. -- patterns[3]: 0xCC003300CC003300
  30. -- patterns[4]: 0xCC883322CC883322
  31. -- patterns[5]: 0xEE88BB22EE88BB22
  32. -- patterns[6]: 0xEECCBB33EECCBB33
  33. -- patterns[7]: 0xFFCCFF33FFCCFF33
  34. -- patterns[8]: 0xFFEEFFBBFFEEFFBB
  35. -- patterns[9]: 0xFFFFFFBBFFFFFFBB
  36. -- patterns[10]: 0x8010022001084004
  37. -- patterns[11]: 0xFFFFFFFFFFFFFFFF
  38. -- patterns[12]: 0x8822882288228822
  39. -- patterns[13]: 0x1122448811224488
  40. -- patterns[14]: 0xC4800C6843023026
  41. -- patterns[15]: 0xB130031BD8C00C8D
  42. -- patterns[16]: 0xAA00AA00AA00AA00
  43. -- patterns[17]: 0x8822552288225522
  44. -- patterns[18]: 0x8855225588552255
  45. -- patterns[19]: 0x77DD77DD77DD77DD
  46. -- patterns[20]: 0x8000000000000000
  47. -- patterns[21]: 0xAA55AA55AA55AA55
  48. -- patterns[22]: 0x038448300C020101
  49. -- patterns[23]: 0x8244394482010101
  50. -- patterns[24]: 0x8814224188412214
  51. -- patterns[25]: 0x8080413E080814E3
  52. -- patterns[26]: 0x22048C7422179810
  53. -- patterns[27]: 0xBE808808EB088880
  54. -- patterns[28]: 0x25C8328964244C92
  55. -- patterns[29]: 0xA29C41BE2AC914EB
  56. -- patterns[30]: 0x40A00000040A0000
  57. -- patterns[31]: 0x8040200002040800
  58. -- patterns[32]: 0xAA00800088008000
  59. -- patterns[33]: 0xFF80808080808080
  60. -- patterns[34]: 0x081C22C180010204
  61. -- patterns[35]: 0xFF808080FF080808
  62. -- patterns[36]: 0xF87422478F172271
  63. -- patterns[37]: 0xBF00BFBFB0B0B0B0
  64. -- patterns[38]: 0xFF7FBE5DA2418000
  65. -- patterns[39]: 0xFAF5FAF5A050A050
  66. -- checksum: 0x0
  67. ----- HyperTalk script -----
  68. on showMessage sentMessage,var
  69.   global FREEZE
  70.   if FREEZE is true then
  71.     exit showMessage
  72.   else
  73.     if var <> empty then put " (" & var & ") " into var
  74.     put return & "[" & sentMessage & var & "]" && "to " & short name of target after last line of card field "whereField" of card "thisCard"
  75.     wait 20
  76.   end if
  77. end showMessage
  78.  
  79. on mouseDown
  80.   showMessage mouseDown
  81. end mouseDown
  82.  
  83. on mouseStillDown
  84.   showMessage mouseStillDown
  85. end mouseStillDown
  86.  
  87. on mouseUp
  88.   showMessage mouseUp
  89. end mouseUp
  90.  
  91. on mouseEnter
  92.   showMessage mouseEnter
  93. end mouseEnter
  94.  
  95. on mouseWithin
  96.   showMessage mouseWithin
  97. end mouseWithin
  98.  
  99. on mouseLeave
  100.   showMessage mouseLeave
  101. end mouseLeave
  102.  
  103. on Idle
  104.   global noIdle
  105.   if noIdle is false then exit Idle
  106.   showMessage Idle
  107. end Idle
  108.  
  109. on openStack
  110.   global FREEZE,noIdle
  111.   put false into FREEZE
  112.   put false into noIdle
  113.   set hilite of card button "Show no idles" of card ID 2820 to true
  114.   set icon of card button ID 13 to -15744
  115.   set name of card button ID 13 to "STOP"
  116.   --hide MenuBar
  117.   showMessage startUp
  118.   showMessage openStack
  119. end openStack
  120.  
  121. on closeStack
  122.   showMessage closeStack
  123.   pass closeStack
  124. end closeStack
  125.  
  126. on suspend
  127.   showMessage suspend
  128.   pass suspend
  129. end suspend
  130.  
  131. on resume
  132.   showMessage resume
  133.   pass resume
  134. end resume
  135.  
  136. on newButton
  137.   showMessage newButton
  138. end newButton
  139.  
  140. on deleteButton
  141.   showMessage deleteButton
  142. end deleteButton
  143.  
  144. on newButton
  145.   showMessage newButton
  146. end newButton
  147.  
  148. on deleteButton
  149.   showMessage deleteButton
  150. end deleteButton
  151.  
  152. on newField
  153.   showMessage newField
  154. end newField
  155.  
  156. on deleteField
  157.   showMessage deleteField
  158. end deleteField
  159.  
  160. on newCard
  161.   showMessage newCard
  162. end newCard
  163.  
  164. on openCard
  165.   showMessage openCard
  166. end openCard
  167.  
  168. on deleteCard
  169.   showMessage deleteCard
  170. end deleteCard
  171.  
  172. on closeCard
  173.   showMessage closeCard
  174. end closeCard
  175.  
  176. on returnKey
  177.   showMessage returnKey
  178. end returnKey
  179.  
  180. on enterKey
  181.   showMessage enterKey
  182. end enterKey
  183.  
  184. on tabKey
  185.   showMessage tabKey
  186. end tabKey
  187.  
  188. on functionKey var
  189.   --if var <> empty then put " (" & var & ") " into var
  190.   showMessage "functionKey",var
  191. end functionKey
  192.  
  193. on controlKey var
  194.   --if var <> empty then put " (" & var & ") " into var
  195.   showMessage controlKey,var
  196. end controlKey
  197.  
  198. on arrowKey var
  199.   --if var <> empty then put " (" & var & ") " into var
  200.   showMessage "arrowKey",var
  201. end arrowKey
  202.  
  203. on help
  204.   showMessage help
  205.   pass help
  206. end help
  207.  
  208. on quit
  209.   showMessage quit
  210. end quit
  211.  
  212. on newBackground
  213.   showMessage newBackground
  214. end newBackground
  215.  
  216. on openBackground
  217.   showMessage openBackground
  218.   pass openBackground
  219. end openBackground
  220.  
  221. on closeBackground
  222.   showMessage closeBackground
  223. end closeBackground
  224.  
  225. on deleteBackground
  226.   showMessage deleteBackground
  227. end deleteBackground
  228.  
  229.